home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / graphicgems2.lha / GemsII / viewcorr / matrix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-06  |  149 b   |  9 lines

  1. /* matrix.h
  2.  *    The type and externs for matrix routines.
  3.  */
  4.  
  5. typedef double ** Matrix;
  6.  
  7. extern double InvertMatrix();
  8. extern Matrix NewMatrix();
  9.